* {
  padding: 0px;
  margin: 0px;
}

html {
  font-family: 'Roboto', cursive;
}

header {
  background: url("../images/mainBackground.jpg") center no-repeat fixed;
  position: relative;
  height: 100vh;
}

.headerTitle {
  color: #FFFFFF;
  text-shadow: -10px 10px 5px #000000;
  text-align: center;
  text-transform: uppercase;
  font-size: 80px;
  font-weight: 300;
  letter-spacing: 5px;
}

.headerSplash {
  color: #FFFFFF;
  text-shadow: -10px 10px 5px #000000;
  text-align: center;
  font-family: 'Ranga', cursive;
  font-size: 40px;
  font-weight: 400;
  animation-name: splash;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  letter-spacing: 2px;
}

.headerContent {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

section.socialLinks {
  background-color: #212121;
}

.socialLinks ul {
  list-style: none;
  text-align: center;
}

.socialLinks ul li {
  display: inline-block;
  padding: 16px 12px;
  transition: ease .2s;
}

.socialLinks ul li a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 42px;
}

.socialLinks ul li:hover {
  transform: scale(1.3);
  padding: 0px 35px;
  transition: ease .2s;
}

#icon-discord:hover {
  color: #7289DA;
}

#icon-twitter:hover {
  color: #55acee;
}

#icon-instagram:hover {
  color: #8a49a1;
}

section.introduceMyself {
  padding: 75px;
}

.introduceMyself p {
  color: #4cb6b9;
  text-align: center;
  text-transform: uppercase;
  font-size: 32px;
  font-weight: 500;
  margin-top: 20px;
}

.introduceMyselfText {
  color: #000000;
  display: block;
  margin: 25px auto;
  width: 1000px;
}

.introduceMyselfText p {
  text-align: center;
  font-size: 20px;
}

.introduceMyselfText p a {
  text-decoration: none;
  transition: all .2;
  color: #000000;
}

.introduceMyselfText p a:hover {
  color: #2bc933;
  transition: all .2;
}

section.bottomPage {
  background: url("../images/secondBackground.jpg") center no-repeat fixed;
  padding: 75px;
  width: auto;
  height: 100vh;
}

.bottomPageText {
  background-color: #FFFFFF;
  display: block;
  margin: auto;
  padding: 15px 15px;
  text-align: center;
  border-radius: 5px;
  width: 620px;
}

.bottomPageText a {
  text-decoration: none;
  text-transform: uppercase;
  transition: all .2s;
  color: #000000;
}

.bottomPageText a:hover {
  color: #2bc933;
  transition: all .2s;
}

.bottomPageText ul {
  list-style-type: none;
}

.bottomPageText ul li {
  border-bottom: 1px solid #9E9E9E;
  padding: 10px;
}

.bottomPageText ul li:last-child {
  border-bottom: 0px;
}

footer {
  color: #757575;
  background-color: #212121;
  text-align: center;
}

footer p {
  font-size: 12px;
  padding: 15px;
}

.copyright {
  border-top: 1px solid #757575;
  background-color: #101010;
}

@keyframes splash {
  0% {
      transform:scale(0.90) rotate(-9deg);
  }
  50% {
      transform:scale(1) rotate(-10deg);
  }
  100% {
      transform:scale(0.90) rotate(-9deg);
  }
}